home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Communication / LibraryOfCongress / Source / License.h < prev    next >
Text File  |  1992-08-05  |  1KB  |  50 lines

  1. /*
  2.     Copyright (c) 1991, 1992 by the MIT Media Laboratory
  3.     
  4.     This software is distributed by Michael Hawley of the MIT Media Laboratory. 
  5.     We hope it will be useful to you.
  6.     
  7.     Permission to use, copy, or modify this software for educational 
  8.     and research purposes only and without fee is hereby granted 
  9.     provided this notice appears on all copies, and provided you send 
  10.     us your improvements.  Any other use of this software, in original 
  11.     or modified form, in whole or in part, requires specific permission 
  12.     from MIT.  This software shall not be used, rewritten, or adapted 
  13.     for use in a commercial product without first obtaining appropriate 
  14.     licenses from MIT.  MIT makes no representations about the suitability 
  15.     of this software for any purpose: it is provided "as is" without any 
  16.     warranty and any risk, damage, or liability incurred through your use 
  17.     of this software is yours alone.
  18.     
  19.     Michael Hawley
  20.     MIT Media Laboratory
  21.     20 Ames Street, 
  22.     Cambridge, MA 02139
  23.     mike@media-lab.mit.edu
  24. */
  25.  
  26. #import <objc/Object.h>
  27.  
  28. int FirstUse();
  29. char *Version();
  30.  
  31. @interface License:Object
  32. {
  33.     id    quit;
  34.     id    accept;
  35.     id    panel;
  36.     id    scrollview;
  37.     id    colorbars;
  38.     id    infopanel;
  39.     id    infobars;
  40.     id    version;
  41. }
  42.  
  43. - info:sender;
  44. - show:sender;
  45. - accept:sender;
  46. - quit:sender;
  47. - suggestion:sender;
  48.  
  49. @end
  50.